-
#include
int main() {
char operator;
double num1, num2, result;
printf("Enter first numbers: ");
scanf("%lf ", &num1 );
printf("Enter an operator (+, -, *, /): ");…
-
### SWEA 1228. 암호문 1
### SWEA 1229. 암호문 2
### SWEA 1230. 암호문 3
암호문 1, 2 모두 같은 코드로 풀음.
레퍼런스 코드가 연결 리스트라 하지만 힙배열때문에 배열리스트나 다름 없어서 동적배열을 이용해서 수정을 하든 처음부터 다시 만들든 해야함.
위치가 0으로 주어질 때를 위해 더미 리스트로 만…
-
#include
int main()
{
int a[20],i,x,n;
printf("How many elements?");
scanf("%d",&n);
printf("Enter array elements:\n");
for(i=0;i
-
#include
#define DIM 4
#include
#include
#include
void cadastra_nome(char nomes[][40]){
int i = 0;
do{
printf("digite o nome do aluno:");
scanf("%s", nomes[i]);
i++;
system("cls");
}while…
-
#include
int main(){ // 45분 일찍 기상
int h, m;
scanf("%d %d", &h, &m);
m -= 45;
if(m
-
resoluções das questões
-
```C
#include
long long int xuehao[100];int chengji[100],sum=0,n;
int main(){
printf("renshu:");
scanf("%d",&n);
printf("xuehao:");
for(int i=0;i
-
# 链表倒序
```c
#include
#include
#define LEN sizeof(struct re)
struct re
{
char ch;
struct re * next;
};
//创建链表
struct re * creat(int n)
{
int i;
struct re * head, * pp,* p;
head=N…
-
```
#include
#include
struct Student{
int num;
char name[20];
struct Student *next;
};
struct Student *creat()
{
struct Student *head = NULL,*end,*pnew;
pnew=(struct Student*)malloc(si…
-
#include
#include
int main()
{
char firstname[20], lastname[20];
char getFirstNameFromApplicant;
char getLastNameFromApplicant;
int age = 0;
printf("Input your age: \n");
scanf("%d" , &age);
if (ag…