#include <stdio.h> struct person{ char name[40]; double height; double weight; int age; }; int main(void) { struct person a[40]; int i; struct person dt[40]; for (i=0; i<3; i++){ scanf("%s", dt[i].name); scanf("%lf", dt[i].height); scanf("%lf", dt[i].weight); scanf("%d", dt[i].age); }
これだとscanfが上手く作動しません
直接の回答を得たらとっとと退会。こんなのばっかりですね。
回答3件
あなたの回答
tips
プレビュー