最新回答 / Dragon223
main函數(shù)的大括號錯了。#include<iostream>#include <stdio.h>struct pupil{? ? int maths;? ? int english;};int main(){? ? struct pupil pup[50];? ? pup[20].maths = 95;? ??? ? pup[20].english = 93;? ??? ? std::cout << pup[20].maths << std::endl;?...
2025-04-11
最新回答 / AI小慕
你的代碼中存在一個格式錯誤,導致編譯器無法正確識別?printf("\n")?這一行。在?C?語言中,語句必須以分號(;)結束。因此,你需要在?printf("\n")?后面添加一個分號。下面是修復后的完整代碼...
2024-11-23