Skip to content

Commit

Permalink
Semestre 2020.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JudsonSS committed Apr 10, 2021
1 parent aec4aa0 commit b9da68c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
File renamed without changes.
20 changes: 20 additions & 0 deletions Labs/Lab12/Apoio/SemNome.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#include <iostream>
using namespace std;

int main()
{
struct
{
int x;
int y;
}
ponto;

cout << "Entre com as coordenadas do ponto: \n";
cin >> ponto.x;
cin >> ponto.y;

cout << "O ponto se encontra na posição ("
<< ponto.x << ","
<< ponto.y << ")\n";
}
File renamed without changes.
Binary file modified Slides/12. Registros.pptx
Binary file not shown.

0 comments on commit b9da68c

Please sign in to comment.