Finished first group of assignments
This commit is contained in:
8
programs/prog2/info.json
Normal file
8
programs/prog2/info.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "演習 2ー2",
|
||||
"description": "2つの整数値を読み込み、それらの和と積を表示するプログラム。",
|
||||
"output": {
|
||||
"type": "screenshot",
|
||||
"content": "./assets/prog2.png"
|
||||
}
|
||||
}
|
||||
BIN
programs/prog2/main
Executable file
BIN
programs/prog2/main
Executable file
Binary file not shown.
15
programs/prog2/main.c
Normal file
15
programs/prog2/main.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
int a;
|
||||
int b;
|
||||
|
||||
printf("Integer a: ");
|
||||
scanf("%d", &a);
|
||||
printf("Integer b: ");
|
||||
scanf("%d", &b);
|
||||
|
||||
printf("Sum of two integers is %d, and product is %d.", a+b, a*b);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user